home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Komunik / Webscr / HTMLtool / _SETUP.1 / Animated Button.scp < prev    next >
Text File  |  1999-10-03  |  760b  |  32 lines

  1. <HTMLtool>This script animates a button when you move the mouse over it</HTMLtool>
  2. <style>
  3. <!--
  4. /*change the color name below to the color you want initially applied to the button. ie:blue*/
  5.  
  6. .mybutton{font-weight:bold;background-color:lime}
  7. //-->
  8. </style>
  9.  
  10. <form onMouseover="change('yellow')" onMouseout="change('lime')">
  11.   <p>
  12.   <input type="button" value="www.lograf.com" class="mybutton" onClick="jumpto('http://www.lograf.com')">
  13.   <input type="button" value="IBM" class="mybutton" onClick="jumpto('http://www.ibm.com')">
  14.   </p>
  15. </form>
  16.  
  17. <script>
  18. <!--
  19.  
  20. function change(color){
  21. var el=event.srcElement
  22. if (el.tagName=="INPUT"&&el.type=="button")
  23. event.srcElement.style.backgroundColor=color
  24. }
  25.  
  26. function jumpto(url){
  27. window.location=url
  28. }
  29.  
  30. //-->
  31. </script>
  32.